home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Scheduling / Cassandra / Source / future / convert / eventStructure.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-10  |  409 b   |  27 lines

  1. #import <time.h>
  2. #import "cass.h"
  3.  
  4.  
  5. typedef int eventLink;
  6.  
  7.  
  8. struct eventStruct {
  9.     eventLink    present, previous, next;
  10.  
  11.     struct tm    ts;
  12.     int        type;
  13.     int        priority;
  14.     int        anniversaryType;
  15.     int        anniversaryFrequency;
  16.     int        sleepNumber;
  17.     int        sleepInterval;
  18.     (BOOL)        playAlarm;
  19.     (BOOL)        showMessage;
  20.     int        voiceAlarmType;
  21.     float        alarmVolume;
  22.  
  23.     char        alarmSound[FILENAME_LENGTH];
  24.     char        message[MESSAGE_SIZE];
  25.  
  26. };
  27.